home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
networking
/
ip
/
ka9q
/
xobbs.arc
/
xotime.c
< prev
next >
Wrap
C/C++ Source or Header
|
1989-05-03
|
397b
|
21 lines
/* XOTIME.C Time retrieval routines for XOBBS. Jim Durham, W2XO 10-24-88 */
/* Version 1.0 */
/* Code released to the amateur radio community */
#include "xobbs.h"
char *gettim()
{
long long_time;
static char timstrng[24];
time(&long_time);
newtime=gmtime(&long_time);
strncpy(timstrng,asctime(newtime),20);
timstrng[19]=0;
strcat(timstrng,"Z");
return(timstrng);
}